bitkeeper revision 1.87 (3e5645f8WsWRq4fdeFv8hAeaMB9cAA)
authorkaf24@labyrinth.cl.cam.ac.uk <kaf24@labyrinth.cl.cam.ac.uk>
Fri, 21 Feb 2003 15:30:00 +0000 (15:30 +0000)
committerkaf24@labyrinth.cl.cam.ac.uk <kaf24@labyrinth.cl.cam.ac.uk>
Fri, 21 Feb 2003 15:30:00 +0000 (15:30 +0000)
apic.c:
  Reduce error tracing to debug tracing in timer code.

xen-2.4.16/arch/i386/apic.c

index 691240ad6130c7266eae7a00903fcc714acd315e..b967934e3c6fed1d242ed313e094d57168b9e6b2 100644 (file)
@@ -664,8 +664,9 @@ int reprogram_ac_timer(s_time_t timeout)
 
 
        if (expire <= 0) {
-               printk("APICT[%02d] Timeout in the past 0x%08X%08X > 0x%08X%08X\n", 
-                          cpu, (u32)(now>>32), (u32)now, (u32)(timeout>>32),(u32)timeout);
+               TRC(printk("APICT[%02d] Timeout in the past 0x%08X%08X > 0x%08X%08X\n", 
+                   cpu, (u32)(now>>32), (u32)now, 
+                   (u32)(timeout>>32),(u32)timeout));
                return 0;               /* timeout value in the past */
        }
 
@@ -673,11 +674,12 @@ int reprogram_ac_timer(s_time_t timeout)
        apic_tmict = (((u64)bus_scale) * expire)>>18;
 
        if (apic_tmict >= 0xffffffff) {
+        /* This is bad! */
                printk("APICT[%02d] Timeout value too large\n", cpu);
                apic_tmict = 0xffffffff;
        }
        if (apic_tmict == 0) {
-               printk("APICT[%02d] timeout value too small\n", cpu);
+               TRC(printk("APICT[%02d] timeout value too small\n", cpu));
                return 0;
        }